/* =========================================================
   MINDLENS — COMPLETE CINEMATIC DARK THEME
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: rgba(255,255,255,0.62);
    --accent: #cfcfcf;
    --border: rgba(255,255,255,0.12);

    --glass-dark: rgba(8,8,8,0.72);
    --glass-medium: rgba(12,12,12,0.82);
    --glass-light: rgba(20,20,20,0.88);

    --white-soft: rgba(255,255,255,0.78);
    --white-faint: rgba(255,255,255,0.08);
}


/* =========================================================
   RESET & GLOBAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #050505;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;

    background-color: #050505;
    color: var(--text-main);

    background-image:
        linear-gradient(
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.15)
        ),
        url("public\images");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

button,
input {
    font-family: inherit;
}


/* =========================================================
   GLOBAL TEXT
   ========================================================= */

body,
body p,
body span,
body div,
body a,
body li {
    color: inherit;
}

p {
    color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}


/* =========================================================
   SUBTLE FILM GRAIN
   ========================================================= */

body::before {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 9998;

    opacity: 0.035;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.15) 0px,
            rgba(255,255,255,0.15) 1px,
            transparent 1px,
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 0px,
            rgba(255,255,255,0.08) 1px,
            transparent 1px,
            transparent 5px
        );

    mix-blend-mode: screen;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3 {
    font-family:
        'Playfair Display',
        serif;

    font-weight: 400;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: relative;

    z-index: 20;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding:
        30px 10%;

    background:
        linear-gradient(
            to bottom,
            rgba(5,5,5,0.78),
            rgba(5,5,5,0.40)
        );

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    box-shadow:
        0 8px 35px rgba(0,0,0,0.25);
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;

    text-shadow:
        0 2px 12px rgba(0,0,0,0.45);
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.nav-links a {
    margin-left: 30px;

    color:
        rgba(255,255,255,0.68);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    position: relative;

    text-decoration: none;

    transition:
        color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: #ffffff;
}

.nav-links a::after {
    content: '';

    position: absolute;

    width: 0;

    height: 1px;

    bottom: -6px;

    left: 0;

    background:
        #ffffff;

    transition:
        width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}


/* =========================================================
   HERO / PAGE HEADERS
   ========================================================= */

.hero,
.page-header,
.shop-hero {
    text-align: center;

    padding:
        100px 20px 80px;
}


/* =========================================================
   MAIN HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 650px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    text-align: left;

    padding:
        100px 10% 120px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.18),
            rgba(0,0,0,0.02) 70%,
            transparent
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero span {
    font-size: 11px;

    letter-spacing: 4px;

    display: block;

    margin-bottom: 24px;

    color:
        rgba(255,255,255,0.72);

    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero h1 {
    font-size:
        clamp(48px, 5vw, 76px);

    line-height: 1.05;

    letter-spacing:
        -2px;

    margin-bottom: 26px;

    color: #ffffff;

    text-shadow:
        0 5px 30px rgba(0,0,0,0.65);
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero p {
    max-width: 620px;

    font-size: 17px;

    line-height: 1.8;

    color:
        rgba(255,255,255,0.68);

    text-shadow:
        0 3px 15px rgba(0,0,0,0.5);
}


/* =========================================================
   PAGE HEADERS
   ========================================================= */

.page-header h1,
.shop-hero h1 {
    font-size: 42px;

    margin-bottom: 20px;

    color: #ffffff;

    text-shadow:
        0 4px 25px rgba(0,0,0,0.55);
}

.page-header p,
.shop-hero p {
    font-size: 18px;

    color:
        rgba(255,255,255,0.65);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary {
    background:
        #ffffff;

    color:
        #090909;

    padding:
        16px 36px;

    border:
        1px solid #ffffff;

    font-size: 12px;

    letter-spacing: 1.8px;

    cursor: pointer;

    text-transform: uppercase;

    transition:
        all 0.3s ease;
}

.btn-primary:hover {
    background:
        #dcdcdc;

    color:
        #050505;

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.35);
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    justify-content: flex-start;

    align-items: center;

    gap: 15px;

    margin-top: 40px;
}

.hero-buttons .btn-primary {
    min-width: 230px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        18px 35px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #d9d9d9
        );

    color:
        #090909;

    font-weight: 600;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.hero-buttons .btn-primary:hover {
    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 230px;

    padding:
        18px 35px;

    color:
        #ffffff;

    background:
        rgba(0,0,0,0.25);

    border:
        1px solid rgba(255,255,255,0.55);

    border-radius:
        999px;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    transition:
        all 0.3s ease;
}

.btn-secondary:hover {
    background:
        rgba(255,255,255,0.10);

    border-color:
        #ffffff;

    transform:
        translateY(-3px);
}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.philosophy {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 0;

    justify-content: center;

    padding:
        55px 8%;

    background:
        rgba(5,5,5,0.78);

    border-top:
        1px solid rgba(255,255,255,0.10);

    border-bottom:
        1px solid rgba(255,255,255,0.10);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}

.phil-item {
    max-width: none;

    padding:
        10px 40px;
}

.phil-item:not(:last-child) {
    border-right:
        1px solid rgba(255,255,255,0.12);
}

.phil-item h3 {
    font-family:
        'Inter',
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 10px;

    color:
        #ffffff;
}

.phil-item p {
    font-size: 14px;

    color:
        rgba(255,255,255,0.58);
}


/* =========================================================
   HOME — LATEST COLLECTIONS
   ========================================================= */

.products {
    position: relative;

    z-index: 2;

    padding:
        100px 8%;

    background:
        rgba(5,5,5,0.82) !important;

    border-top:
        1px solid rgba(255,255,255,0.08);

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.section-title {
    text-align: center;

    font-size:
        clamp(34px, 4vw, 48px);

    margin-bottom: 15px;

    color:
        #ffffff;

    letter-spacing:
        -1px;

    text-shadow:
        0 4px 25px rgba(0,0,0,0.45);
}

.section-title::after {
    content: '';

    display: block;

    width: 60px;

    height: 2px;

    background:
        #ffffff;

    margin:
        18px auto 50px;

    opacity:
        0.8;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap:
        50px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.card {
    position: relative;

    display: flex;

    flex-direction: column;

    padding:
        18px;

    background:
        rgba(12,12,12,0.82);

    border:
        1px solid rgba(255,255,255,0.10);

    border-radius:
        16px;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.card:hover {
    transform:
        translateY(-7px);

    background:
        rgba(20,20,20,0.92);

    border-color:
        rgba(255,255,255,0.20);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.50);
}


/* =========================================================
   CARD IMAGE
   ========================================================= */

.card-img {
    width: 100%;

    aspect-ratio:
        16 / 9;

    object-fit: cover;

    border-radius:
        11px;

    margin-bottom:
        20px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.40);
}


/* =========================================================
   CARD DETAILS
   ========================================================= */

.card-details h3 {
    font-size: 22px;

    margin-bottom: 8px;

    color:
        #ffffff;
}

.card-details p {
    font-size: 14px;

    color:
        rgba(255,255,255,0.60);

    margin-bottom:
        16px;
}

.card-details a {
    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    color:
        #ffffff;

    border-bottom:
        1px solid rgba(255,255,255,0.70);

    padding-bottom:
        3px;

    display:
        inline-block;

    transition:
        transform 0.25s ease;
}

.card-details a:hover {
    transform:
        scale(1.06);
}


/* =========================================================
   COLLECTION CTA
   ========================================================= */

.collections-cta {
    margin-top:
        80px;

    text-align:
        center;
}


/* =========================================================
   GALLERY PAGE
   ========================================================= */

.filters {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-bottom:
        50px;
}

.filter-btn {
    background:
        rgba(8,8,8,0.65);

    border:
        1px solid rgba(255,255,255,0.14);

    padding:
        8px 16px;

    font-size: 13px;

    color:
        rgba(255,255,255,0.62);

    cursor:
        pointer;

    border-radius:
        20px;

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    transition:
        all 0.25s ease;
}

.filter-btn:hover,
.active-filter {
    color:
        #ffffff;

    background:
        rgba(255,255,255,0.10);

    border-color:
        rgba(255,255,255,0.35);

    box-shadow:
        0 6px 20px rgba(0,0,0,0.25);
}

.gallery-section {
    position: relative;

    padding:
        20px 10% 100px;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(250px, 1fr));

    gap:
        20px;
}

.gallery-item {
    overflow:
        hidden;

    cursor:
        pointer;

    border-radius:
        14px;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.35);
}

.gallery-item.hide {
    display:
        none;
}

.gallery-item img {
    width:
        100%;

    height:
        auto;

    aspect-ratio:
        16 / 9;

    object-fit:
        cover;

    background:
        #101010;

    border-radius:
        14px;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.gallery-item:hover img {
    transform:
        scale(1.06);

    filter:
        brightness(1.08)
        contrast(1.04);
}


/* =========================================================
   GALLERY TITLE
   ========================================================= */

.gallery-title {
    font-size:
        13px;

    margin-top:
        8px;

    color:
        rgba(255,255,255,0.62);

    text-align:
        center;
}


/* =========================================================
   PREVIEW NOTICE
   ========================================================= */

.preview-notice {
    max-width:
        720px;

    margin:
        0 auto 60px;

    padding:
        18px 22px;

    text-align:
        center;

    border:
        1px solid rgba(255,255,255,0.12);

    background:
        rgba(8,8,8,0.72);

    color:
        rgba(255,255,255,0.68);

    border-radius:
        14px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.25);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}


/* =========================================================
   SHOP PAGE
   ========================================================= */

.shop-section {
    position: relative;

    padding:
        0 10% 120px;
}

.shop-grid {
    display:
        grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap:
        50px;
}

.shop {
    padding:
        80px 10%;
}


/* =========================================================
   SHOP CARD
   ========================================================= */

.shop-card {
    background:
        rgba(12,12,12,0.88) !important;

    border:
        1px solid rgba(255,255,255,0.10) !important;

    border-radius:
        16px;

    overflow:
        hidden;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.shop-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(255,255,255,0.20) !important;

    box-shadow:
        0 25px 65px rgba(0,0,0,0.50);
}


/* =========================================================
   SHOP IMAGE
   ========================================================= */

.shop-image img {
    width:
        100%;

    height:
        auto;

    object-fit:
        contain;

    background:
        #0b0b0b;

    transition:
        transform 0.5s ease;
}

.shop-card:hover .shop-image img {
    transform:
        scale(1.025);
}


/* =========================================================
   SHOP CONTENT
   ========================================================= */

.shop-content {
    padding:
        22px;
}

.shop-tag {
    font-size:
        10px;

    letter-spacing:
        2px;

    color:
        rgba(255,255,255,0.52);

    font-weight:
        600;
}

.shop-content h3 {
    font-size:
        22px;

    margin:
        10px 0;

    color:
        #ffffff;
}

.shop-content p {
    font-size:
        14px;

    color:
        rgba(255,255,255,0.60);

    margin-bottom:
        18px;
}

.shop-footer {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;
}


/* =========================================================
   PRICE
   ========================================================= */

.price {
    font-size:
        20px;

    font-weight:
        600;

    color:
        #ffffff;

    margin-bottom:
        10px;
}

.price-value {
    font-size:
        22px;

    font-weight:
        500;

    color:
        #ffffff;
}

.price-label {
    font-size:
        12px;

    color:
        rgba(255,255,255,0.50);

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}


/* =========================================================
   SHOP BUY BUTTON
   ========================================================= */

.btn-buy {
    font-size:
        12px;

    letter-spacing:
        1px;

    padding:
        11px 22px;

    color:
        #ffffff;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(255,255,255,0.30);

    border-radius:
        999px;

    transition:
        all 0.25s ease;
}

.btn-buy:hover {
    background:
        #ffffff;

    color:
        #050505;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35);
}


/* =========================================================
   VIEW PACK BUTTON
   ========================================================= */

.view-pack-btn {
    display:
        inline-block;

    margin-top:
        12px;

    padding:
        12px 22px;

    background:
        #ffffff;

    color:
        #050505;

    text-decoration:
        none;

    font-size:
        13px;

    letter-spacing:
        1px;

    border-radius:
        999px;

    box-shadow:
        0 7px 25px rgba(0,0,0,0.25);

    transition:
        all 0.3s ease;
}

.view-pack-btn:hover {
    transform:
        translateY(-3px);

    background:
        #dddddd;
}


/* =========================================================
   PRODUCT LIST
   ========================================================= */

#product-list {
    display:
        grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap:
        40px;

    width:
        100%;
}


/* =========================================================
   LINK BUTTON
   ========================================================= */

.link-btn {
    font-size:
        13px;

    font-weight:
        600;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

    color:
        #ffffff;

    border-bottom:
        1px solid rgba(255,255,255,0.75);

    padding-bottom:
        3px;
}


/* =========================================================
   SEARCH BAR
   ========================================================= */

#searchInput,
#searchBox {
    width:
        100%;

    padding:
        14px 16px;

    background:
        rgba(8,8,8,0.72) !important;

    border:
        1px solid rgba(255,255,255,0.12) !important;

    color:
        #ffffff;

    font-size:
        14px;

    margin-bottom:
        20px;

    border-radius:
        12px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.20);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    transition:
        all 0.25s ease;
}

#searchInput::placeholder,
#searchBox::placeholder {
    color:
        rgba(255,255,255,0.42);
}

#searchInput:focus,
#searchBox:focus {
    background:
        rgba(12,12,12,0.92) !important;

    outline:
        none;

    border-color:
        rgba(255,255,255,0.35) !important;

    box-shadow:
        0 0 0 4px rgba(255,255,255,0.05);
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.footer-cta {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    text-align:
        center;

    padding:
        90px 20px;

    background:
        rgba(5,5,5,0.82) !important;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.footer-cta h3 {
    font-size:
        26px;

    margin-bottom:
        10px;

    color:
        #ffffff;
}

.footer-cta p {
    font-size:
        15px;

    color:
        rgba(255,255,255,0.58);

    max-width:
        520px;

    line-height:
        1.6;
}


/* =========================================================
   SITE FOOTER
   ========================================================= */

.site-footer {
    position:
        relative;

    z-index:
        2;

    padding:
        80px 10%;

    border-top:
        1px solid rgba(255,255,255,0.10);

    text-align:
        center;

    background:
        rgba(3,3,3,0.94) !important;

    color:
        #ffffff;

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);
}

.site-footer .copyright {
    font-size:
        14px;

    font-weight:
        500;

    margin-bottom:
        8px;

    color:
        #ffffff;
}

.site-footer .legal {
    font-size:
        13px;

    color:
        rgba(255,255,255,0.48);

    max-width:
        720px;

    margin:
        0 auto 18px;

    line-height:
        1.6;
}

.site-footer .footer-links {
    font-size:
        13px;

    margin-bottom:
        10px;

    color:
        rgba(255,255,255,0.70);
}

.site-footer .footer-links a {
    margin:
        0 6px;

    transition:
        color 0.25s ease;
}

.site-footer .footer-links a:hover {
    color:
        #ffffff;
}

.site-footer .contact-email {
    font-size:
        12px;

    color:
        rgba(255,255,255,0.42);
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-content {
    position:
        relative;

    z-index:
        2;

    padding:
        0 10% 80px;
}

.about-text {
    max-width:
        720px;

    margin:
        0 auto;

    text-align:
        center;
}

.about-text p {
    font-size:
        16px;

    color:
        rgba(255,255,255,0.62);

    line-height:
        1.8;

    margin-bottom:
        22px;
}


/* =========================================================
   PRODUCT PAGE
   ========================================================= */

.product-hero {
    text-align:
        center;

    padding:
        100px 20px 60px;

    background:
        rgba(5,5,5,0.20);
}

.product-hero .product-tag {
    font-size:
        11px;

    letter-spacing:
        2px;

    color:
        rgba(255,255,255,0.55);

    display:
        block;

    margin-bottom:
        18px;
}

.product-hero h1 {
    font-size:
        48px;

    margin-bottom:
        18px;

    color:
        #ffffff;

    text-shadow:
        0 4px 25px rgba(0,0,0,0.55);
}

.product-hero p {
    font-size:
        18px;

    color:
        rgba(255,255,255,0.62);

    max-width:
        640px;

    margin:
        0 auto;
}


/* =========================================================
   PRODUCT WRAPPER
   ========================================================= */

.product-wrapper {
    display:
        grid;

    grid-template-columns:
        1.2fr 1fr;

    gap:
        80px;

    padding:
        0 10% 120px;

    align-items:
        start;
}


/* =========================================================
   PRODUCT LAYOUT
   ========================================================= */

.product-layout {
    padding:
        0 10% 120px;
}

.product-section {
    padding:
        0 10% 120px;

    display:
        grid;

    gap:
        60px;
}


/* =========================================================
   PRODUCT PREVIEWS
   ========================================================= */

.product-preview img {
    width:
        100%;

    aspect-ratio:
        16 / 9;

    object-fit:
        cover;

    border-radius:
        12px;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.40);
}

.product-previews {
    display:
        grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap:
        20px;
}

.product-previews img,
.preview-img {
    width:
        100%;

    border-radius:
        12px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.40);
}

.preview-img {
    aspect-ratio:
        16 / 9;

    object-fit:
        cover;

    cursor:
        pointer;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.preview-img:hover {
    transform:
        scale(1.03);

    filter:
        brightness(1.08);
}


/* =========================================================
   PRODUCT SIDE
   ========================================================= */

.product-side {
    position:
        sticky;

    top:
        120px;

    background:
        rgba(10,10,10,0.78);

    border:
        1px solid rgba(255,255,255,0.10);

    border-radius:
        18px;

    padding:
        28px;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.40);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    color:
        #ffffff;
}


/* =========================================================
   PRODUCT DETAILS
   ========================================================= */

.product-details {
    display:
        flex;

    flex-direction:
        column;
}

.product-details h2 {
    font-size:
        28px;

    margin-bottom:
        12px;

    color:
        #ffffff;
}

.product-details h3 {
    font-size:
        18px;

    margin-top:
        28px;

    margin-bottom:
        8px;

    color:
        #ffffff;
}

.product-details p,
.product-details li {
    font-size:
        15px;

    color:
        rgba(255,255,255,0.62);

    line-height:
        1.7;
}

.product-details ul {
    padding-left:
        18px;
}


/* =========================================================
   PRICE BOX
   ========================================================= */

.price-box {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        baseline;

    margin-bottom:
        24px;
}


/* =========================================================
   LARGE BUY BUTTON
   ========================================================= */

.btn-buy-large {
    display:
        block;

    text-align:
        center;

    padding:
        16px 0;

    background:
        #ffffff;

    color:
        #050505;

    font-size:
        13px;

    letter-spacing:
        1px;

    text-transform:
        uppercase;

    margin-bottom:
        40px;

    border:
        none;

    border-radius:
        999px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.30);

    transition:
        all 0.3s ease;
}

.btn-buy-large:hover {
    background:
        #dddddd;

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.45);
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.product-info h3 {
    font-size:
        16px;

    margin-bottom:
        10px;

    color:
        #ffffff;
}

.product-info ul {
    list-style:
        none;

    padding-left:
        0;

    margin-bottom:
        28px;
}

.product-info li {
    font-size:
        14px;

    color:
        rgba(255,255,255,0.60);

    margin-bottom:
        6px;
}

.license-note {
    font-size:
        13px;

    color:
        rgba(255,255,255,0.48);

    line-height:
        1.6;
}

.product-description {
    font-size:
        16px;

    color:
        rgba(255,255,255,0.62);

    line-height:
        1.8;

    margin-bottom:
        18px;

    max-width:
        640px;
}

.product-buy {
    margin-top:
        30px;

    display:
        flex;

    align-items:
        center;

    gap:
        25px;
}


/* =========================================================
   LANDSCAPE MODE
   ========================================================= */

.product-layout-landscape {
    display:
        grid;

    grid-template-columns:
        1.4fr 1fr;

    gap:
        80px;
}

.product-layout-landscape .product-previews img {
    aspect-ratio:
        16 / 9;
}


/* =========================================================
   PORTRAIT MODE
   ========================================================= */

.product-layout-portrait {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        80px;

    align-items:
        start;
}

.product-layout-portrait .product-previews img {
    aspect-ratio:
        9 / 16;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    position:
        fixed;

    inset:
        0;

    background:
        rgba(0,0,0,0.94);

    display:
        none;

    justify-content:
        center;

    align-items:
        center;

    z-index:
        9999;
}

.lightbox img {
    max-width:
        90%;

    max-height:
        90%;

    box-shadow:
        0 20px 80px rgba(0,0,0,0.60);
}

.lightbox-close {
    position:
        absolute;

    top:
        30px;

    right:
        40px;

    font-size:
        36px;

    color:
        #ffffff;

    cursor:
        pointer;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
    max-width:
        320px;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes heroFadeUp {

    from {
        opacity:
            0;

        transform:
            translateY(18px);
    }

    to {
        opacity:
            1;

        transform:
            translateY(0);
    }
}

.hero span,
.hero h1,
.hero p,
.hero .hero-buttons,
.page-header h1,
.page-header p,
.shop-hero h1,
.shop-hero p {
    opacity:
        0;

    animation:
        heroFadeUp 1.2s ease-out forwards;
}


/* =========================================================
   CONTENT LAYERS
   ========================================================= */

.products,
.philosophy,
.gallery-section,
.shop-section,
.about-content,
.product-section,
.product-layout {
    position:
        relative;
}


/* =========================================================
   MOBILE — MAIN
   ========================================================= */

@media (max-width: 768px) {

    body {
        background-attachment:
            scroll;

        background-position:
            68% top;
    }


    .navbar {
        flex-direction:
            column;

        gap:
            20px;

        padding:
            24px 20px;

        background:
            rgba(5,5,5,0.86);
    }


    .logo {
        font-size:
            14px;

        letter-spacing:
            4px;
    }


    .nav-links {
        display:
            flex;

        flex-wrap:
            wrap;

        justify-content:
            center;

        gap:
            12px;
    }


    .nav-links a {
        margin-left:
            0;

        font-size:
            12px;

        font-weight:
            700;

        letter-spacing:
            1.4px;

        text-decoration:
            none;
    }


    .hero {
        min-height:
            650px;

        padding:
            90px 25px 90px;

        align-items:
            center;

        justify-content:
            center;

        text-align:
            center;

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.15),
                rgba(0,0,0,0.30)
            );
    }


    .hero-content {
        max-width:
            100%;
    }


    .hero span {
        font-size:
            9px;

        letter-spacing:
            3px;

        margin-bottom:
            20px;
    }


    .hero h1 {
        font-size:
            clamp(40px, 11vw, 58px);

        line-height:
            1.08;

        letter-spacing:
            -1px;
    }


    .hero p {
        font-size:
            14px;

        max-width:
            420px;

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .hero-buttons {
        flex-direction:
            column;

        width:
            100%;

        gap:
            12px;
    }


    .hero-buttons .btn-primary,
    .btn-secondary {
        width:
            min(100%, 320px);

        min-width:
            0;

        padding:
            17px 25px;
    }


    .philosophy {
        grid-template-columns:
            1fr;

        padding:
            30px 25px;
    }


    .phil-item {
        padding:
            25px 0;

        border-right:
            none !important;

        border-bottom:
            1px solid rgba(255,255,255,0.10);
    }


    .phil-item:last-child {
        border-bottom:
            none;
    }


    .products {
        padding:
            75px 20px;
    }


    .section-title {
        font-size:
            34px;
    }


    .gallery-section,
    .shop-section {
        padding:
            20px 20px 80px;
    }


    .gallery-grid {
        grid-template-columns:
            1fr;
    }


    .shop-grid {
        grid-template-columns:
            1fr;
    }


    #product-list {
        grid-template-columns:
            1fr;

        gap:
            24px;
    }


    .shop-card {
        width:
            100%;

        min-width:
            0;

        border-radius:
            14px;
    }


    .shop-content {
        min-width:
            0;
    }


    .shop-content h3 {
        font-size:
            22px;

        line-height:
            1.35;

        overflow-wrap:
            anywhere;

        word-break:
            normal;
    }


    .shop-image img {
        width:
            100%;

        height:
            auto;

        display:
            block;
    }


    .about-content {
        padding:
            0 20px 60px;
    }


    .product-wrapper {
        grid-template-columns:
            1fr;

        gap:
            50px;

        padding:
            0 20px 100px;
    }


    .product-layout-landscape,
    .product-layout-portrait {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }


    .product-section {
        padding:
            0 20px 100px;
    }


    .product-layout {
        padding:
            0 20px 100px;
    }


    .product-side {
        position:
            static;

        padding:
            22px;
    }


    .product-hero {
        padding:
            80px 20px 50px;
    }


    .product-hero h1 {
        font-size:
            36px;
    }


    .product-hero p {
        font-size:
            16px;
    }


    .site-footer {
        padding:
            60px 20px;
    }

}


/* =========================================================
   MOBILE — SMALL DEVICES
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        min-height:
            620px;

        padding:
            75px 18px 75px;
    }


    .hero h1 {
        font-size:
            39px;
    }


    .hero p {
        font-size:
            13px;
    }


    .hero-buttons .btn-primary,
    .btn-secondary {
        width:
            100%;
    }


    .philosophy {
        padding:
            25px 20px;
    }


    .products {
        padding:
            60px 16px;
    }


    .section-title {
        font-size:
            30px;
    }


    .card {
        padding:
            12px;

        border-radius:
            14px;
    }


    .shop-card {
        border-radius:
            14px;
    }

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }
}


/* =========================================================
   MINDLENS — EXPLODED CAMERA HERO VIDEO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   CAMERA VIDEO
   --------------------------------------------------------- */

.hero-camera {
    position: absolute;

    top: 40px;
    right: 5px;

    width: min(750px, 58vw);

    z-index: 1;

    pointer-events: none;

    opacity: 0.96;

    /* Helps the black video merge into the background */
    mix-blend-mode: normal;
}


/* ---------------------------------------------------------
   VIDEO ITSELF
   --------------------------------------------------------- */

.hero-camera video {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    background: transparent;

    border: none;

    outline: none;

    /* Soft cinematic fade */
    -webkit-mask-image:
        radial-gradient(
            ellipse 72% 72% at 50% 50%,
            #000 48%,
            rgba(0,0,0,0.85) 65%,
            transparent 100%
        );

    mask-image:
        radial-gradient(
            ellipse 72% 72% at 50% 50%,
            #000 48%,
            rgba(0,0,0,0.85) 65%,
            transparent 100%
        );

    filter:
        contrast(1.04)
        brightness(0.96);
}


/* ---------------------------------------------------------
   SOFT LIGHT BEHIND CAMERA
   --------------------------------------------------------- */

.hero-camera::before {
    content: "";

    position: absolute;

    width: 70%;
    height: 70%;

    top: 15%;
    left: 15%;

    background:
        radial-gradient(
            ellipse,
            rgba(255,255,255,0.07),
            transparent 68%
        );

    filter: blur(45px);

    pointer-events: none;
}


/* ---------------------------------------------------------
   KEEP HERO CONTENT ABOVE VIDEO
   --------------------------------------------------------- */

.hero > *:not(.hero-camera) {
    position: relative;
    z-index: 3;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .hero-camera {
        width: 780px;

        top: 35px;

        right: 10px;
    }

}


/* =========================================================
   NORMAL LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .hero-camera {
        width: 650px;

        right: 0;

        top: 40px;
    }

}


/* =========================================================
   SMALL LAPTOP / TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero-camera {
        width: 500px;

        right: -20px;

        top: 45px;

        opacity: 0.78;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .hero {
        overflow: hidden;
    }

    .hero-camera {

        position: relative;

        width: min(100%, 420px);

        top: auto;
        right: auto;

        margin:
            -45px
            auto
            5px;

        opacity: 0.92;

        z-index: 1;
    }

    .hero-camera video {

        width: 100%;

        -webkit-mask-image:
            radial-gradient(
                ellipse 75% 75% at 50% 50%,
                #000 45%,
                rgba(0,0,0,0.8) 70%,
                transparent 100%
            );

        mask-image:
            radial-gradient(
                ellipse 75% 75% at 50% 50%,
                #000 45%,
                rgba(0,0,0,0.8) 70%,
                transparent 100%
            );
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .hero-camera {

        width: 350px;

        margin-top: -35px;
    }

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-camera {
        display: none;
    }

}

/* =========================================================
   SHOP FILTER BUTTONS — MATCH GALLERY FILTER STYLE
   ========================================================= */

.shop .filter-btn,
.shop-section .filter-btn {
    background:
        rgba(8,8,8,0.65) !important;

    border:
        1px solid rgba(255,255,255,0.14) !important;

    color:
        rgba(255,255,255,0.62) !important;

    padding:
        8px 16px;

    font-size:
        13px;

    cursor:
        pointer;

    border-radius:
        20px;

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    transition:
        all 0.25s ease;
}


/* ---------------------------------------------------------
   SHOP FILTER HOVER / ACTIVE
   --------------------------------------------------------- */

.shop .filter-btn:hover,
.shop .filter-btn.active-filter,
.shop-section .filter-btn:hover,
.shop-section .filter-btn.active-filter {
    color:
        #ffffff !important;

    background:
        rgba(255,255,255,0.10) !important;

    border-color:
        rgba(255,255,255,0.35) !important;

    box-shadow:
        0 6px 20px rgba(0,0,0,0.25);
}